home *** CD-ROM | disk | FTP | other *** search
- echo off
- cls
- echo ╔════════════════════════════════════════════════════════════════╗
- echo ║ Demonstration of the Sorted Directory Utility Program (SD) ║
- echo ║ Copyright (C) 1989 By John F. Stetson - All Rights Reserved ║
- echo ║ ║
- echo ║ The following demonstration illustrates some of the features ║
- echo ║ and capabilities of the SD utility program. Please refer to ║
- echo ║ the program documentation (SD.DOC) for additional information. ║
- echo ║ Press CTRL-BREAK to terminate the demonstration at any time. ║
- echo ╚════════════════════════════════════════════════════════════════╝
- pause
- cls
- echo ╔════════════════════════════════════════════════════════════════╗
- echo ║ System Information Summary ║
- echo ╚════════════════════════════════════════════════════════════════╝
- pause
- sd %1/$/i
- if errorlevel 2 goto end
- cls
- echo ╔════════════════════════════════════════════════════════════════╗
- echo ║ Program Help Information ║
- echo ╚════════════════════════════════════════════════════════════════╝
- pause
- sd /$/?
- if errorlevel 2 goto end
- cls
- echo ╔════════════════════════════════════════════════════════════════╗
- echo ║ Files Sorted By Size ║
- echo ╚════════════════════════════════════════════════════════════════╝
- pause
- sd %1/$/e/v/b/1
- if errorlevel 2 goto end
- cls
- echo ╔════════════════════════════════════════════════════════════════╗
- echo ║ Files Sorted By Date And Time ║
- echo ╚════════════════════════════════════════════════════════════════╝
- pause
- sd %1/$/e/v/d/o
- if errorlevel 2 goto end
- cls
- echo ╔════════════════════════════════════════════════════════════════╗
- echo ║ Files In All Directories ║
- echo ╚════════════════════════════════════════════════════════════════╝
- pause
- sd %1\/$/e/v/g/4
- if errorlevel 2 goto end
- cls
- echo ╔════════════════════════════════════════════════════════════════╗
- echo ║ Files In All ARC Files ║
- echo ╚════════════════════════════════════════════════════════════════╝
- pause
- sd %1\/$/e/v/g/a/4
- :end
- echo Returning To The DOS Command Prompt . . .